crypto/tls.serverHandshakeStateTLS13.transcript (field)

29 uses

	crypto/tls (current package)
		handshake_server_tls13.go#L40: 	transcript      hash.Hash
		handshake_server_tls13.go#L168: 	hs.transcript = hs.suite.hash.New()
		handshake_server_tls13.go#L295: 		transcript := cloneHash(hs.transcript, hs.suite.hash)
		handshake_server_tls13.go#L400: 	hs.transcript.Write(hs.clientHello.marshal())
		handshake_server_tls13.go#L401: 	chHash := hs.transcript.Sum(nil)
		handshake_server_tls13.go#L402: 	hs.transcript.Reset()
		handshake_server_tls13.go#L403: 	hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
		handshake_server_tls13.go#L404: 	hs.transcript.Write(chHash)
		handshake_server_tls13.go#L416: 	hs.transcript.Write(helloRetryRequest.marshal())
		handshake_server_tls13.go#L516: 	hs.transcript.Write(hs.clientHello.marshal())
		handshake_server_tls13.go#L517: 	hs.transcript.Write(hs.hello.marshal())
		handshake_server_tls13.go#L534: 		clientHandshakeTrafficLabel, hs.transcript)
		handshake_server_tls13.go#L537: 		serverHandshakeTrafficLabel, hs.transcript)
		handshake_server_tls13.go#L561: 	hs.transcript.Write(encryptedExtensions.marshal())
		handshake_server_tls13.go#L591: 		hs.transcript.Write(certReq.marshal())
		handshake_server_tls13.go#L603: 	hs.transcript.Write(certMsg.marshal())
		handshake_server_tls13.go#L617: 	signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
		handshake_server_tls13.go#L635: 	hs.transcript.Write(certVerifyMsg.marshal())
		handshake_server_tls13.go#L647: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_server_tls13.go#L650: 	hs.transcript.Write(finished.marshal())
		handshake_server_tls13.go#L661: 		clientApplicationTrafficLabel, hs.transcript)
		handshake_server_tls13.go#L663: 		serverApplicationTrafficLabel, hs.transcript)
		handshake_server_tls13.go#L677: 	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
		handshake_server_tls13.go#L708: 	hs.clientFinished = hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
		handshake_server_tls13.go#L712: 	hs.transcript.Write(finishedMsg.marshal())
		handshake_server_tls13.go#L719: 		resumptionLabel, hs.transcript)
		handshake_server_tls13.go#L779: 	hs.transcript.Write(certMsg.marshal())
		handshake_server_tls13.go#L817: 		signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
		handshake_server_tls13.go#L824: 		hs.transcript.Write(certVerify.marshal())